home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / DynamicElements / RepetitionEx2.wo / RepetitionEx2.wos < prev   
Encoding:
Text File  |  1996-01-26  |  375 b   |  16 lines

  1. id ages, anAge; 
  2. id selectedAge;
  3.  
  4. // Create the array of choices 
  5. - awake 
  6. {
  7.     ages = @("Over 50", "Under 20", "Just right");
  8.     selectedAge = @"Just right";
  9. }
  10.  
  11. // Pass the user's selected age to the next page for display
  12. - submitForm {
  13.     [WOApp setResultMessage:[NSString stringWithFormat:@"Your age is '%@'", selectedAge]];
  14.     return [WOApp pageWithName:@"Page2"];
  15. }
  16.